home *** CD-ROM | disk | FTP | other *** search
/ World of Education / World of Education.iso / world_s / sm20a.zip / ASSUME.SM next >
Text File  |  1992-03-23  |  210b  |  7 lines

  1. # This program show the difference of the complex variable a and the real
  2. # variable b on simplification of sgn()
  3. assume(b == real)
  4. abs(a)*sgn(a), a*sgn(a), sgn(a^6)
  5. abs(b)*sgn(b), b*sgn(b), sgn(b^6)
  6. end
  7.